home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 October: Mac OS SDK / Dev.CD Oct 97 SDK1.toast / Development Kits (Disc 1) / QuickDraw GX / Programming Stuff / GX Libraries / DecompressShape.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-14  |  926 b   |  41 lines  |  [TEXT/MPS ]

  1.  
  2. /*
  3.     File:        DecompressShape.h
  4.  
  5.     Contains:    graphics libraries - shape decompression
  6.  
  7.     Written by:    Mike Reed
  8.  
  9.     Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  10.  
  11.     Writers:
  12.  
  13.         (jtd)    John Daggett
  14.  
  15.     Change History (most recent first):
  16.  
  17.          <1>     9/14/95    jtd        First checked in.
  18. */
  19.  
  20. #pragma once
  21. #ifndef decompressShapeIncludes
  22.     #define decompressShapeIncludes
  23.  
  24.     #include <QuickDraw.h>
  25.     #include <GXTypes.h>
  26.  
  27.     #ifdef __cplusplus
  28.     extern "C" {
  29.     #endif
  30.     
  31.     Handle CreateQDGXStream(gxShape source, PicHandle proxie, Boolean forPrintingOnly, Boolean eraseBackground);
  32.     PicHandle DecompressShape(gxShape theShape, PicHandle proxie, Boolean forPrintingOnly, Boolean eraseBackground);
  33.     PicHandle ShapeToPICT(gxShape source);
  34.     void ShapeToScrap(gxShape source, Boolean addProxie, Boolean forPrintingOnly, Boolean eraseBackground);
  35.     void DragAndDropShape(EventRecord* event, gxShape shape);
  36.  
  37.     #ifdef __cplusplus
  38.     };
  39.     #endif
  40. #endif
  41.